*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#f5f7f5;
  color:#222;
  padding-top:80px;   /* 👈 navbar height ke equal */
  font-weight: 500;
}

/* /* --- 1. SMOOTH SCROLL LOGIC --- */
        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* --- 2. HERO SECTION STYLING --- */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background-color: #0b130a;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('/images/file_00000000fa5471fa8d7b1812c52ee462.png') no-repeat center center/cover;
            transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
            z-index: 0;
        }

        .hero-section:hover .hero-bg {
            transform: scale(1.1);
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(11, 19, 10, 0.8));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            color: white;
        }

        .premium-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 15px;
            color: #f0fff0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .btn-agri {
            position: relative;
            display: inline-block;
            margin-top: 60px;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #1b4d3e 0%, #7cfc00 100%);
            background-size: 200% auto;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(124, 252, 0, 0.2);
            transition: 0.5s all cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            animation: fadeInUp 1.2s ease-out 0.4s forwards;
            opacity: 0;
        }

        .btn-agri:hover {
            background-position: right center;
            transform: scale(1.08) translateY(-8px);
            box-shadow: 0 20px 40px rgba(124, 252, 0, 0.4);
        }

        /* --- 3. ABOUT SECTION STYLING --- */
        .about-section {
            padding: 100px 5%;
            background: #fdfdfd;
            min-height: 100vh; /* Niche wala content pura dikhe */
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .sub-badge {
            background: rgba(124, 252, 0, 0.1);
            color: #1b4d3e;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }

        .about-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: #0b130a;
            margin-bottom: 25px;
        }

        .highlight-p {
            font-size: 1.1rem;
            line-height: 1.8;
            border-left: 4px solid #7cfc00;
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .about-image-wrapper {
            position: relative;
        }

        .floating-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Mobile */
        @media (max-width: 992px) {
            .about-grid { grid-template-columns: 1fr; text-align: center; }
            .highlight-p { border-left: none; border-top: 3px solid #7cfc00; padding-top: 15px; }
        }
/* CARDS */
/* --- UNIQUE ABOUT SECTION STYLING --- */
.agro-about-wrapper {
    padding: 100px 5%;
    background: #fdfdfd;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Unique Container Name */
.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Unique Grid Name */
.about-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-badge-tag {
    background: rgba(124, 252, 0, 0.1);
    color: #1b4d3e;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.about-heading-text {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #0b130a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-heading-text span {
    color: #1b4d3e;
    font-weight: 800;
}

/* Unique Paragraph Styling */
.about-focus-text {
    font-size: 1.15rem;
    line-height: 1.8;
    border-left: 5px solid #7cfc00;
    padding-left: 25px;
    margin-bottom: 25px;
    color: #222;
}

.about-secondary-text {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Unique Image Wrapper */
/* 1. Main Container for Image */
.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2. Fix Green Border (Image ke piche wala box) */
.about-image-border {
    position: absolute;
    top: 25px;   /* Border ko thoda niche shift kiya */
    left: 25px;  /* Border ko thoda right shift kiya */
    width: 100%;
    height: 100%;
    border: 3px solid #7cfc00; /* Agriculture Green Color */
    border-radius: 30px;
    z-index: -1; /* Isse border image ke piche rahegi */
    transition: 0.5s ease;
}

/* 3. Main Image Styling with Floating Animation */
.main-agri-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
    z-index: 2;
    /* Floating Animation yahan hai */
    animation: imageFloat 5s ease-in-out infinite;
    transition: 0.5s ease;
}

/* 4. Hover Effect: Mouse le jane par border move hogi */
.about-img-frame:hover .about-image-border {
    transform: translate(-15px, -15px);
    background-color: rgba(124, 252, 0, 0.05); /* Halka sa green glow */
}

/* 5. Floating Animation Logic */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px); /* Image hawa mein thoda upar jayegi */
    }
}

/* Mobile pe border adjust karne ke liye */
@media (max-width: 768px) {
    .about-image-border {
        top: 15px;
        left: 15px;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-focus-text {
        border-left: none;
        border-top: 4px solid #7cfc00;
        padding: 20px 0 0 0;
    }
}
.agro-about-wrapper {
    padding: 120px 5%;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Leaves ko bahar jane se rokne ke liye */
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- LEAF ANIMATIONS --- */
/* 1. Leaves ko position karna */
.leaf-deco {
    position: absolute;
    font-size: 3rem; /* Thoda bada kiya taaki dikhe */
    z-index: 10; /* Sabse upar rakhne ke liye */
    pointer-events: none;
    user-select: none;
    display: inline-block;
}

.leaf-1 {
    top: 15%; 
    left: 8%;
    animation: leafFloat1 5s ease-in-out infinite; /* Pehla animation */
}

.leaf-2 {
    bottom: 20%; 
    right: 8%;
    animation: leafFloat2 7s ease-in-out infinite; /* Dusra animation */
}

/* 2. Keyframes (Inke bina animation nahi chalega) */
@keyframes leafFloat1 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(25deg); /* Upar jayega aur ghumega */
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes leafFloat2 {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-30px) rotate(-20deg) scale(1.1); /* Zoom bhi hoga */
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

/* Mobile pe leaves chhote karne ke liye */
@media (max-width: 768px) {
    .leaf-deco { font-size: 2rem; opacity: 0.4; }
}


/* --- 1. SECTION WRAPPER --- */
.agro-services-wrapper {
    padding: 100px 5%;
    background: #f8faf8; /* Light greyish green */
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Glow Effect */
.glow-circle {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* --- 2. TITLE STYLING --- */
.services-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #0b130a;
    margin-bottom: 10px;
    font-weight: 800;
}

.services-main-title span {
    color: #1b4d3e;
}

.services-subtext {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* --- 3. GRID SYSTEM --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* --- 4. CARD STYLING & ANIMATION --- */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: var(--delay);
}

/* Hover Effect: Card jumps up with a green glow */
.service-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: #7cfc00;
    box-shadow: 0 20px 40px rgba(27, 77, 62, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1b4d3e;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* --- 5. KEYFRAMES --- */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 6. MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .agro-services-wrapper {
        padding: 60px 5%;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); /* Single column on mobile */
    }
    .service-card {
        padding: 30px 20px;
    }
}

/* --- 1. WRAPPER & BACKGROUND --- */
.agro-model-wrapper {
    padding: 100px 5%;
    background: #ffffff; /* Clean White */
    position: relative;
    overflow: hidden;
}

.model-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Decoration */
.vector-bg {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(124, 252, 0, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

/* --- 2. TITLES --- */
.model-main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #0b130a;
    text-align: center;
    margin-bottom: 10px;
}

.model-main-title span { color: #1b4d3e; font-weight: 800; }

.model-subtext {
    text-align: center;
    color: #888;
    margin-bottom: 70px;
}

/* --- 3. FLEX GRID (Modern Layout) --- */
.model-flex-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- 4. MODEL CARD ITEM --- */
.model-card-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    cursor: pointer;
}

.model-card-item:hover {
    transform: translateX(15px); /* Slide right on hover */
    border-color: #7cfc00;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    background: #f9fff8;
}

/* Icon Box */
.model-icon-box {
    margin-right: 30px;
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #eefbed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.8rem;
    transition: 0.4s;
}

.model-card-item:hover .icon-circle {
    background: #1b4d3e;
    transform: rotateY(180deg); /* Flip effect */
}

/* Text Info */
.model-info h3 {
    font-size: 1.3rem;
    color: #1b4d3e;
    margin-bottom: 5px;
}

.model-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- 5. MOBILE VIEW --- */
@media (max-width: 768px) {
    .model-card-item {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .model-icon-box {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .model-card-item:hover {
        transform: translateY(-10px); /* Mobile par upar slide hoga, side mein nahi */
    }
}
/* --- 1. MAIN WRAPPER (Deep Green Theme) --- */
.agro-vision-wrapper {
    padding: 120px 5%;
    background: linear-gradient(135deg, #0b130a 0%, #1b4d3e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* --- 2. VISION/MISSION GRID --- */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* --- 3. PREMIUM CARD STYLING --- */
.vision-card {
    background: rgba(255, 255, 255, 0.05); /* Glass Effect */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #7cfc00;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.vision-card:hover .card-glow {
    opacity: 1;
}

/* Icons & Typography */
.vision-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(124, 252, 0, 0.3));
}

.card-heading {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-heading span { color: #7cfc00; }

.card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.highlight-green {
    color: #7cfc00;
    font-weight: 700;
}

/* Decorative Footer Line */
.card-footer-line {
    width: 50px;
    height: 4px;
    background: #7cfc00;
    margin-top: 30px;
    border-radius: 10px;
    transition: 0.5s;
}

.vision-card:hover .card-footer-line {
    width: 100px;
}

/* --- 4. DECORATIVE LEAVES --- */
.leaf-bg {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    z-index: 1;
}

.leaf-left { top: 10%; left: 5%; animation: float 6s infinite ease-in-out; }
.leaf-right { bottom: 10%; right: 5%; animation: float 8s infinite ease-in-out reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* --- 5. MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .vision-grid { grid-template-columns: 1fr; }
    .agro-vision-wrapper { padding: 80px 5%; }
    .vision-card { padding: 40px 25px; }
}
/* --- LEAF DECORATION FIXED --- */
.leaf-bg {
    position: absolute;
    font-size: 4rem;
    z-index: 1;
    /* Visibility Fix: 
       Yahan humne 'filter' ka use kiya hai taaki leaves glow karein 
       aur dark background par chamkein. */
    filter: drop-shadow(0 0 15px rgba(163, 255, 51, 0.6)) brightness(1.5);
    opacity: 0.6; /* Pehle 0.1 tha, ab badha diya taaki dikhe */
    pointer-events: none;
}

.leaf-left { 
    top: 10%; 
    left: 5%; 
    animation: floatLeaf 6s infinite ease-in-out; 
    color: #a3ff33; /* Neon/Golden Green color */
}

.leaf-right { 
    bottom: 10%; 
    right: 5%; 
    animation: floatLeaf 8s infinite ease-in-out reverse; 
    color: #ffffff; /* Contrast ke liye ek white leaf */
}

/* Smooth Floating Animation */
@keyframes floatLeaf {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    50% { 
        transform: translateY(-40px) rotate(25deg) scale(1.1); 
    }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .leaf-bg {
        font-size: 2.5rem;
        opacity: 0.4;
    }
}

/* FOOTER */
footer{
  background:#083f16;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .two-col{
    grid-template-columns:1fr;
  }
  header{
    flex-direction:column;
  }
  .hero h1{
    font-size:36px;
  }
}
h2{
  color:#0b6623;
  font-size:36px;
  position:relative;
  display:inline-block;
}

h2::after{
  content:'';
  width:60%;
  height:4px;
  background:#0b6623;
  position:absolute;
  left:0;
  bottom:-1px;
  border-radius:2px;
}

/* Footer */
footer{background:#083f16;color:#fff;padding:40px 60px;text-align:center}
footer p{opacity:.8}


@media(max-width:900px){
header{padding:15px 30px}
section{padding:60px 30px}
.about{grid-template-columns:1fr}
.hero-content h2{font-size:36px}
}
.agro-values-wrapper {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. HEADER STYLING --- */
.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-badge {
    color: #1b4d3e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.values-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0b130a;
    margin-top: 10px;
}

.values-title span { color: #1b4d3e; }

.title-underline {
    width: 80px;
    height: 4px;
    background: #7cfc00;
    margin: 15px auto;
    border-radius: 10px;
}

/* --- 3. VALUES GRID --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- 4. INDIVIDUAL VALUE CARD --- */
.value-card {
    background: #f9fff8;
    padding: 50px 35px;
    border-radius: 25px;
    border: 1px solid #edf5ec;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Card Numbering */
.value-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(27, 77, 62, 0.05); /* Ghost Number Effect */
    transition: 0.4s;
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    transition: 0.4s;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1b4d3e;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* --- 5. HOVER EFFECTS --- */
.value-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    border-color: #7cfc00;
    box-shadow: 0 20px 50px rgba(27, 77, 62, 0.1);
}

.value-card:hover .value-number {
    color: rgba(124, 252, 0, 0.15);
    transform: scale(1.2);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(-10deg);
}

/* --- 6. MOBILE FIX --- */
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 40px 25px; }
}




  .premium-footer {
    background: #0d1b15;
    color: #ffffff;
    padding: 30px 20px 15px; /* Height choti karne ke liye compact padding */
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-overlay {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo - Height Adjusted */
.footer-logo img {
    height: 102px; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-logo:hover img { transform: scale(1.1); }

/* Contact Links with Hover Effects */
.footer-info-center { margin-bottom: 20px; }
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.contact-item i { color: #40916c; font-size: 1.2rem; }
.contact-item a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Underline Hover Effect */
.hover-underline { position: relative; }
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background-color: #40916c;
    transition: width 0.3s ease;
}
.hover-underline:hover { color: #ffffff; }
.hover-underline:hover::after { width: 100%; }

.contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social Icons (Super Hover) */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-btn:hover {
    background: #40916c;
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(64, 145, 108, 0.4);
}

/* Compact Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    margin: 20px 0 10px;
}
.footer-nav a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
.footer-nav a:hover { color: #40916c; letter-spacing: 1px; }

/* Bottom Section */
.footer-bottom {
    font-size: 0.75rem;
    color: #718096;
    padding-top: 10px;
}
.footer-bottom span { color: #40916c; font-weight: 700; }
.footer-bottom a { color: #40916c; text-decoration: none; font-weight: bold; }

/* Mobile View */
@media (max-width: 768px) {
    .contact-row { flex-direction: column; gap: 5px; }
    .footer-nav { gap: 10px; }
}




